home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gprof / dummy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-04  |  395 b   |  17 lines

  1. #include "gprof.h"
  2. #include "symtab.h"
  3.  
  4.  
  5. /*
  6.  * dummy.c -- This file should be used for an unsupported processor type.
  7.  * It does nothing, but prevents findcall() from being unresolved.
  8.  */
  9.  
  10. void
  11. DEFUN (find_call, (parent, p_lowpc, p_highpc),
  12.        Sym * parent AND bfd_vma p_lowpc AND bfd_vma p_highpc)
  13. {
  14.   fprintf (stderr, "%s: -c not supported on this machine architecture\n",
  15.        whoami);
  16. }
  17.